home *** CD-ROM | disk | FTP | other *** search
/ PC Home 44 / PC_Home_Issue_44.iso / director / software.dxr / 00030_help screen.ls < prev    next >
Encoding:
Text File  |  1996-03-18  |  314 b   |  13 lines

  1. on mouseDown
  2.   set the locH of sprite 27 to the locH of sprite 27 + 2
  3.   set the locV of sprite 27 to the locV of sprite 27 - 2
  4.   updateStage()
  5. end
  6.  
  7. on mouseUp
  8.   set the locH of sprite 27 to the locH of sprite 27 - 2
  9.   set the locV of sprite 27 to the locV of sprite 27 + 2
  10.   updateStage()
  11.   go("help", "main")
  12. end
  13.